else
g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT,
- _("text may not appear inside <%s>"),
+ _("Text may not appear inside <%s>"),
g_markup_parse_context_get_element (context));
break;
}
g_markup_parse_context_get_position (context, &line, NULL);
g_set_error (error, GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_VALUE,
- _("Invalid object type `%s' on line %d"),
+ _("Invalid object type '%s' on line %d"),
values[i], line);
return;
}
g_markup_parse_context_get_position (data->ctx, &line, NULL);
g_set_error (error, GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_SIGNAL,
- _("Invalid signal `%s' for type `%s' on line %d"),
+ _("Invalid signal '%s' for type '%s' on line %d"),
values[i], g_type_name (object_info->type), line);
return;
}
{
g_set_error (error, GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_UNHANDLED_TAG,
- _("Invalid root element: '%s'"),
+ _("Invalid root element: <%s>"),
element_name);
return;
}
data, error))
g_set_error (error, GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_UNHANDLED_TAG,
- _("Unhandled tag: '%s'"),
+ _("Unhandled tag: <%s>"),
element_name);
}